home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 1997 November & December / Amiga-CD 1997 #11-12.iso / aminet / microbase / install-microbase < prev    next >
Text File  |  1997-02-16  |  1KB  |  58 lines

  1. ; $VER: InstallMicroBase 1.01
  2. ; FR-SoftWorks MicroBase Installer Script
  3. ; Copyright © FR-SoftWorks 1997
  4.  
  5. (working "Installiere MicroBase")
  6.  
  7. (set DestDir
  8.    (askdir
  9.       (prompt "Wohin möchten Sie MicroBase installieren?")
  10.       (help "Eine Schublade für das Programm wird automatisch erstellt.")
  11.       (default "SYS:")
  12.    )
  13. )
  14.  
  15. (set DestDir (expandpath DestDir))
  16. (set @default-dest (tackon DestDir "MicroBase"))
  17.  
  18. (makedir @default-dest (infos))
  19.  
  20. (copyfiles
  21.    (source "dist")
  22.    (dest @default-dest)
  23.    (all)
  24.    (infos)
  25. )
  26.  
  27. (copyfiles
  28.     (prompt "Kopiere CBSI")
  29.     (help "CBSI steht für 'Crossbones Systeminformation'.\n\nDieses Utility untersucht unter anderem:\n\n· Prozessor, Coprozessor\n· Grafikchipsatz\n· Betriebssystem\n· Geschwindigkeit des Computers\n· Datendurchsatz der Festplatte")
  30.     (source "cbsi")
  31.     (dest "C:")
  32.     (optional "nofail" "force")
  33.     (confirm)
  34. )
  35.  
  36. (copylib
  37.     (prompt "Kopiere hbasic2.library")
  38.     (help "Diese Bibliotheksdatei wird lediglich von den dBase-Modulen benötigt.")
  39.     (source "hbasic2.library")
  40.     (dest "LIBS:")
  41.     (optional "nofail")
  42.     (confirm)
  43.     )
  44.  
  45. (copylib
  46.     (prompt "Kopiere rexxmathlib.library")
  47.     (help "Diese Bibliotheksdatei stellt für Berechnungsformeln und Skripte zusätzliche mathematische Funktionen zur Verfügung.")
  48.     (source "rexxmathlib.library")
  49.     (dest "LIBS:")
  50.     (optional "nofail")
  51.     (confirm)
  52.     )
  53.  
  54. (message "\nInstallation abgeschlossen.\n")
  55.  
  56. (exit (quiet))
  57.  
  58.